home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Electronic Messages / InfoMac Digests / InfoMac Vol. 6 / InfoMac 6.08 < prev    next >
Encoding:
Text File  |  1988-02-07  |  16.1 KB  |  405 lines  |  [TEXT/ttxt]

  1.  
  2.  
  3. INFO-MAC Digest           Monday, 8 Feb 1988        Volume 6 : Issue 8
  4.  
  5. Today's Topics:
  6.                                   Re: C
  7.                                   Re: C
  8.                              Re: C compilers
  9.             automatically creating a new stack in hyperarrgh
  10.                        Default tab settings in LSC
  11.                           Programming languages
  12.                            February Vaporware
  13.  
  14.  
  15. ----------------------------------------------------------------------
  16.  
  17. Date: Sun, 31 Jan 88 01:13:16 -0500 (EST)
  18. From: Richard Siegel <rs4u+@andrew.cmu.edu>
  19. Subject: Re: C
  20.  
  21.  
  22. Agreed that MPW is an Apple product, but it's not supported
  23. directly by them unless you have $600 per year to spend on
  24. being a Registered Developer. Most of the third-party
  25. compiler makers (us, Manx, Consulair) offer direct
  26. support via telephone.
  27.  
  28. You'll find that LightspeedC is nearly as fast as MPW running
  29. on a Mac II, as is Aztec C. (I'm referring to code quality,
  30. of course). MPW does allocate registers automatically, but
  31. with only a little effort, a programmer can specify variables
  32. to be allocated as register variables, and achieve the same
  33. results.
  34.  
  35. Besides that, the Other Two (Manx and LightspeedC) are cheaper.
  36.  
  37.         --Rich
  38.  
  39. Rich Siegel, THINK Technologies.
  40. Of COURSE my opinion's biased! :-]
  41.  
  42. ------------------------------
  43.  
  44. Subject: Re: C
  45. Date: Sun, 31 Jan 88 02:16:18 -0800
  46. From: Jerry Sweet <jsweet@ICS.UCI.EDU>
  47.  
  48.  
  49. Hi, Rich.  Thanks for the C compiler comparison info.  Let me clarify
  50. the remark that you addressed concerning support.  You said:
  51.  
  52. > Agreed that MPW is an Apple product, but it's not supported
  53. > directly by them unless you have $600 per year to spend on
  54. > being a Registered Developer.
  55.  
  56. I meant "supported" in the sense that Apple is likely to continue to
  57. maintain MPW for a long time to come.  No, I haven't heard any rumors
  58. of any company's demise.  My primary recommendation for MPW is as a
  59. generalized software development platform.  For example, the company
  60. for which I work (when I'm not wearing my ARPAnaut hat) is about to
  61. release a full Ada compiler running under MPW.  I believe that another
  62. company has a Modula-2 compiler available for MPW.  It would be
  63. interesting/neat if other C compilers ran under MPW too, although I
  64. recognize that there are merits to fast, specialized third party
  65. platforms as well.
  66.  
  67. But tell me more.
  68.  
  69. -jns
  70.  
  71. ------------------------------
  72.  
  73. Date: Mon,  1 Feb 88 10:48:10 -0500 (EST)
  74. From: Walter Ray Smith <ws0n+@andrew.cmu.edu>
  75. Subject: Re: C compilers
  76.  
  77.  
  78. I have not performed a detailad comparison, but my feeling after using both
  79. compilers (and debugging their machine code) is that MPW C produces better
  80. code than Lightspeed.  MPW C is made by Green Hills Software, which is
  81. well-known for its excellent C compilers, and MPW C is nowhere near as fast as
  82. Lightspeed, so this seems plausible.
  83.  
  84. By the way, if anyone tries to tell you MPW is "almost as fast" as Lightspeed,
  85. they're just trying to rationalize it to themselves.  MPW is, as I said, not
  86. even close.  And I'm not counting the link phase, which in MPW (even on a
  87. MacII) is about as slow as any system I've ever used, including a loaded
  88. 11/750, and which almost doesn't exist in Lightspeed.
  89.  
  90. - Walt
  91.  
  92. ------------------------------
  93.  
  94. Date: Tue, 2 Feb 88 16:29
  95. From: OPTON%UHVAX1.BITNET@cunyvm.cuny.edu
  96. Subject: automatically creating a new stack in hyperarrgh
  97.  
  98. Hi, everyone,
  99.  
  100. I am constructing a project handling stack to help my shop keep track of
  101. the various projects we undertake.  One of the buttons is called 'BillMtl'
  102. and will transfer us to a stack where we can update/add to the  materials
  103. required for that particular project.  Each project will have it's own
  104. bill of materials stack named BoMtl<proj>.  The script (in conceptual lingo)
  105. will run something like this:
  106.  
  107. on mouseUp
  108. is there a stack named 'BoMtl<proj>'?  {<proj> is the project name which is
  109.                                          pulled from the 'projname' field}
  110. yes: open stack 'BoMtl<proj>'
  111.      go to the last card
  112.  
  113. no:  create a new stack named 'BoMtl<proj>
  114.      copy the 'BoMtl background into the new stack
  115.  
  116.  
  117. What do I put after doMenu "New Stack.." to automatically name my new stack,
  118. completely bypassing the usual dialog box?  Or is doMenu the proper attack?
  119.  
  120. This program, er, stackware, is very similar to the 'visual outliner'
  121. presented in Goodman's hypercard book.  I think he has already solved
  122. my problem, but I cannot make heads or tails of what he is doing, where
  123. his scripts are suuposed to be located, etc.  That program, er, stackware,
  124. is one of the most poorly presented...(fill in usual bitching about poorly
  125. organized documentation).
  126.  
  127. Any and all help and guidance is appreciated.  Please reply to me directly as
  128. I think that the answer is something obvious that everbody else already knows,
  129. so there is no use cluttering up their systems.
  130.  
  131. Thanks!
  132.  
  133. Lee Thomison
  134. BITNET: OPTON@UHVAX1
  135. landline: (713) 749-3127
  136.  
  137. ------------------------------
  138.  
  139. Date: Mon, 1 Feb 88 12:24:29 PST
  140. From: dfs059@Mipl3.JPL.Nasa.Gov
  141. Subject: Default tab settings in LSC
  142.  
  143. I use Lightspeed C extensively not only for Mac development, but also
  144. as a text editor for files residing on our VAXes.  In the VAX world,
  145. a tab is normally 8 spaces, so....
  146.  
  147. Is there any way to change the default number of spaces per tab in
  148. LSC?  I would very much like to not have to do a "Set Tabs" each
  149. time I edit a host file. . .
  150.  
  151. While we are at it, how about the default font?  It sure would
  152. be nice for a document to come up in 12 point Monaco, instead of
  153. 9 point!
  154.  
  155. Dan Stanfill         NASA/JPL Multimission Image Processing Lab
  156.  
  157. Arpa:  dfs059@mipl3.jpl.nasa.gov
  158. Span:  mipl3::dfs059
  159.  
  160. (no cute saying)
  161.  
  162. ------------------------------
  163.  
  164. Date: Wed, 03 Feb 88 13:10:34 EST
  165. From: Bull <WCD%VTVM1.BITNET@forsythe.stanford.edu>
  166. Subject: Programming languages
  167.  
  168. Some help in selecting a programming language for the Mac +, please.
  169. It would be used mostly for engineering applications, so FORTRAN would
  170. be my first choice. However, the premiere issue of MacGuide gave
  171. Microsoft's version a pretty poor review. If the only problem with it
  172. is poor documentation ("It doesn't even attempt to teach Fortran."),
  173. would it necessarily be a problem for a present FORTRAN programmer?
  174.  
  175. Additional consideration: I'd like to tap into the info-mac archived
  176. programs. I got a directory listing, but the filetypes don't suggest
  177. what languages they're in (except for a few .Cs and .BASs). What *is*
  178. a .HQX file?
  179.  
  180. If you haven't guessed, I'm new to Macs (it should be delivered any
  181. day now). That explains it, eh?
  182.  
  183. Thanks,
  184.  
  185. Bull
  186.  
  187. [ Moderator's Note:
  188. All .Hqx, .Hcx, .Dqx, etc files are binary files coded into a generic
  189. ASCII file by either Binhex or StuffIt (which now does Binhex!).  This
  190. makes all the binaries generic enough to pass through any mailer.
  191. Most of the source files are encoded this way because they are
  192. packed together into a PackIt or Stuff library before being encoded.
  193.  
  194. Jon]28-Jan-88 21:09:21-PST,10147;000000000001
  195.  
  196. ------------------------------
  197.  
  198. Date: Thu, 28 Jan 88  23:02 EST
  199. From: SEWALL%UCONNVM.BITNET@forsythe.stanford.edu
  200. Subject: February Vaporware
  201.  
  202.                          VAPORWARE
  203.                        Murphy Sewall
  204.              From the December 1987 APPLE PULP
  205.         H.U.G.E. Apple Club (E. Hartford) News Letter
  206.                           $15/year
  207.                        P.O. Box 18027
  208.                   East Hartford, CT 06118
  209.             Call the "Bit Bucket" (203) 569-8739
  210.      Permission granted to copy with the above citation
  211.  
  212. Steve's Revenge?
  213. Finally, a Macintosh clone appears imminent.  Former
  214. Commodore and current Atari boss, Jack Tramiel, is readying
  215. a pair of 68020 machines that will run Macintosh software as
  216. well as ST programs.  Supposedly, the machines are products
  217. of a collaboration between Atari and NeXt.
  218. - InfoWorld 11 January
  219.  
  220. 16.8 Million Colors.
  221. The Palette Manager, the programming resource within the
  222. Macintosh operating system that will control colors in the
  223. Mac II, still isn't finished.  The Mac II was released with
  224. an incomplete version.  Although the QuickDraw routines can
  225. write up to 48 bits of color data per pixel, Apple's current
  226. operating system supports only eight.  Third party
  227. developers are hard at work trying to bring the promise of
  228. 16.8 million colors to life.  Both Supermac Technology and
  229. Rasterops Corporation have already shown 24 bit per pixel
  230. color devices that are likely to be on the market (for about
  231. $3,000) before Apple completes the Palette Manager.
  232. Meanwhile, Orchid Technologies expects to begin shipping a
  233. color card for the Mac SE later this month.  The card will
  234. support sixteen colors from a palette of 4,096 colors and
  235. retail for $695 ($1,000 to $1,300 bundled with a color
  236. monitor.)
  237. - InfoWorld 21 December, 4 and 18 January and
  238.   PC Week 12 January
  239.  
  240. Will the II Talk?
  241. An Apple II AppleTalk card (for the IIgs anyway) is rumored
  242. for later this year.  It's targeted at the education market
  243. that appears increasingly restive about their inability to
  244. create their own local networks.  Best guess on the price is
  245. $300 per card (plus a Mac II to act as a file server).
  246. - Comp.Sys.Apple (Internet Apple Newsgroup) 5 January
  247.  
  248. IIgs Office System (Continued from Last Month).
  249. Spinnaker is in the process of porting its MS-DOS
  250. productivity package "8 in 1" to the IIgs.  A IIgs
  251. translation of MECA's Managing Your Money also will be
  252. available soon. - InCider February
  253.  
  254. Trade Bill.
  255. Apple owners should be happy to hear that the 1,000 page
  256. trade bill is bogged down in Congressional committees
  257. because of its complexity.  That bill contains a proposal to
  258. punish Toshiba for selling advanced technology to the Soviet
  259. Union by prohibiting the company from doing business with
  260. American firms.  However, Toshiba is the sole source of the
  261. popular ImageWriter printer. - A+ February
  262.  
  263. Two Macs; No Mice.
  264. When Apple finally announces their own laptop Macintosh
  265. later this year (see last September's column) there will be
  266. two versions.  One will have a backlit LCD screen and the
  267. second will have an even better display (best guess: gas
  268. plasma).  Neither machine will have a mouse; they have
  269. trackballs on the sides of their keyboards.
  270. - InfoWorld 11 January
  271.  
  272. Have a Really Big Spreadsheet Application?
  273. Within the next five months Smart Software plans to begin
  274. shipping a robust 32,767 by 32,767 cell spreadsheet program
  275. with sophisticated 3-dimensional graphics and word
  276. processing modules.  Code-named "Wingz," the program which
  277. will run under either Apple Unix (A/Ux) or the native Mac
  278. operating system will retail for under $500.
  279. - InfoWorld 4 January and PC Week 5 January
  280.  
  281. Speedier dBase Mac and Other New Macware.
  282. Ashton-Tate is said to have plans for a whole series of
  283. Macintosh products in 1988.  Among them are a faster version
  284. of dBase Mac this Spring and a revised version of the, as
  285. yet unreleased in the first version, GraphSheet Mac
  286. integrated spreadsheet and chart program (by the end of the
  287. year).  Meanwhile Lotus will try again with Modern Jazz
  288. ($395), a much enhanced product which will be available to
  289. purchasers of Jazz and Jazz 1A for $95.  Modern Jazz
  290. includes a command language compatible with the one in 1-2-3
  291. and Symphony.  Innovative Data Design, publishers of Mac
  292. Draft, will ship Dreams, a high-end, color drawing tool for
  293. architects, engineers, and graphic artists in July.  Dreams
  294. will be $500 (upgrade from Mac Draft for $200).  Acius' 4th
  295. Dimension will become five to six times faster and offer a
  296. built-in script manager for foreign language support with
  297. the release of version 1.1 in April or May.  Acius already
  298. is planning version 2.0 which might be ready by Christmas.
  299. That version will contain improvements for performance at
  300. the level of Foxbase, the speedy dBase work-alike.  Finally,
  301. Word Perfect, embarrassed by the lateness of their program
  302. for the Mac, has introduced a $99 beta version of the
  303. program for a limited time (the final version will be priced
  304. at $395, but will be sent to betaware buyers at no charge).
  305. As users find bugs in the beta version, they will be able to
  306. return disks with a documented problem and receive a
  307. replacement.
  308. - PC Week 22/29 December, 19 January and
  309.   InfoWorld 18 January
  310.  
  311. Who Needs Applications?
  312. Most future Macintosh applications software will run without
  313. modifications under A/Ux as well as the native operating
  314. system.  Apple's Unix is so large that it will require 70
  315. Mac disks to hold it all (40 Mbytes of code).  A/Ux actually
  316. will be the first piece of software distributed primarily by
  317. hard disk - an 80 Mbyte drive pluggable into the Mac II (the
  318. price for A/Ux alone is expected to be just under $1,500).
  319. Surely an operating system that massive must already include
  320. nearly every application any user could want (and everything
  321. else is on stackware no doubt).  - PC Week 5 January
  322.  
  323. All New Macintosh OS.
  324. At a conference of financial analysts, Apple President John
  325. Sculley, said that a complete rewrite of the Macintosh
  326. operating system is underway.  The purpose is to provide
  327. greater support for multitasking and a robust environment
  328. for connectivity in a multivendor environment.  He indicted
  329. that the task is expected to take three or four years to
  330. complete and upward compatibility with the present operating
  331. system will be maintained.
  332. - InfoWorld 14 December and PC Week 15 December
  333.  
  334. Return of Kaypro.
  335. Before Independence Day, Kaypro may become the first vendor
  336. to actually market a PS/2 compatible.  David Kay says that
  337. his firm's forthcoming release will be "in the same genre"
  338. as IBM's PS/2 Models 50 and 60 (80286 based) and will be
  339. compatible with Micro Channel architecture.  Kaypro is
  340. expected to announce a licensing agreement for PS/2
  341. technology when the machine is introduced.  Kaypro also
  342. plans a springtime introduction of a 20 MHz 80386 based
  343. laptop (not PS/2 compatible). - PC Week 5 and 12 January
  344.  
  345. Macintosh Screen Projection.
  346. Eastman Kodak has unveiled a LCD display system allowing
  347. overhead projection of Mac SE and Mac+ displays at 512 by
  348. 432 pixel resolution.  The product, the Datashow HR, should
  349. be ready to ship by April at a list of $1,595 (a $99 video
  350. adapter also will be needed).  A cooling fan (with cleanable
  351. filter) is part of the package and Showmaker II software
  352. (for less than $100) will be offered as an option.
  353. - InfoWorld 18 January
  354.  
  355. Slow, Memory Hog.
  356. If you're appalled that it takes 1.5 Mbytes of memory just
  357. to load the OS/2 operating system, wait until you have a
  358. look at IBM's Extended Edition 1.0 due out in July.  It will
  359. require 3 Mbytes of RAM.  Software applications will require
  360. additional memory (512K no doubt).  In addition, benchmark
  361. tests by Neal Nelson & Associates indicates that some
  362. multitasking operations under OS/2 run up to seven times
  363. slower than Xenix, Release 5.2.2 from Santa Cruz Operations.
  364. - InfoWorld 4 January and PC Week 5 January
  365.  
  366. All the Script That's Fit to Print.
  367. CCS Labs of Irvine, California plans to offer a Postscript
  368. compatible (CSS Labs' own clone) printer built around and
  369. Inmos T-414 Transputer chip.  That's a 7.5 MIP processor
  370. (see Vaporware from May '86 and November '87) capable of
  371. delivering output at 40 pages per minute.  For the present,
  372. a laser engine in the planned price range (target list is
  373. $2,800) faster than 8 pages per minute isn't available, but
  374. buyers will be able to upgrade the engine later without
  375. changing controllers. - InfoWorld 14 December
  376.  
  377. Just the Thing to Backup Your Hard Drive.
  378. Sharp has announced a new optical-magneto disk drive that
  379. can erase and rewrite on 5.25 inch (optical) disks.  Each
  380. disk can hold 422 megabytes (yes, 422 Mbytes).
  381. - Random Access 3 January
  382.  
  383. Planned Obsolescence.
  384. Owners of Radio Shack Model 4's (the last of the TRS-80
  385. series) were surprised to discover that the current TRS-DOS
  386. 6.02 is not programmed to recognize years past 1987.  The
  387. story is that TRS-DOS 6.02 accesses the system clock on
  388. bootup and has refused to proceed since 1988 began.  That
  389. certainly tops the glitch in older versions of Apple II
  390. ProDOS that, when used with some clock cards, insists that
  391. 1988 is really 1982. - InfoWorld 11 January
  392.  
  393. ---------------------
  394. Disclaimer: My employer often is appalled by my opinions, and
  395.             my facts may be only vaguely right <slippery when wet>.
  396.  
  397. ARPA:   sewall%uconnvm.bitnet@cunyvm.cuny.edu       Murphy A. Sewall
  398. BITNET: SEWALL@UCONNVM                          School of Business Admin.
  399. UUCP:   ...ihnp4!psuvax1!UCONNVM.BITNET!SEWALL  University of Connecticut
  400.  
  401. ------------------------------
  402.  
  403. End of INFO-MAC Digest
  404. **********************
  405.